REALSQLdatabase.AutoCommit

Determines whether the database commits changes automatically, or whether changes open an implicit transaction that you must explicitly close by calling Commit or Rollback. The default is False: Changes open implicit transactions that you must close explicitly.

Syntax

AutoCommit( Boolean ) as


Parameters

Boolean


Notes

If you set AutoCommit to True, then the database will no longer open implicit transactions for you, and instead, will automatically commit each database change immediately. It is recommended that you leave AutoCommit set to False unless you understand the implications of setting it to True.